home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / crt / sun4.md / RCS / start.s,v < prev   
Text File  |  1989-07-31  |  3KB  |  114 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @| @;
  7.  
  8.  
  9. 1.2
  10. date     89.03.26.20.19.51;  author mgbaker;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     89.03.22.13.57.42;  author mgbaker;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @Initial copy of sun4 crt0.o (called start.s).
  22. @
  23.  
  24.  
  25. 1.2
  26. log
  27. @Seventeenth Kernel.  It executes its first system call: Sys_Shutdown().
  28. @
  29. text
  30. @/*
  31.  * start.s --
  32.  *
  33.  *    Crt0 for sun4.  This is the header that sets up argc, argv and envp
  34.  *    for main() and then jumps there.  It also initializes the values
  35.  *    of certain registers.
  36.  *
  37.  * Copyright 1989 Regents of the University of California
  38.  * Permission to use, copy, modify, and distribute this
  39.  * software and its documentation for any purpose and without
  40.  * fee is hereby granted, provided that the above copyright
  41.  * notice appear in all copies.  The University of California
  42.  * makes no representations about the suitability of this
  43.  * software for any purpose.  It is provided "as is" without
  44.  * express or implied warranty.
  45.  */
  46. #include <kernel/machConst.h>
  47. .seg    "data"
  48. .asciz    "$Header: /sprite/src/lib/c/crt/sun4.md/RCS/start.s,v 1.1 89/03/22 13:57:42 mgbaker Exp Locker: mgbaker $ SPRITE (Berkeley)"
  49. .align    4
  50. .globl    _environ
  51. _environ:
  52. .word    0xffffffff
  53.  
  54. .align    8
  55. .seg    "text"
  56.  
  57. .globl    start
  58.  
  59. /*
  60.  * The stack pointer should be double-word aligned when it gets here.  At
  61.  * MACH_FULL_STACK_FRAME beneath it lies the user stack put together in
  62.  * DoExec().  At the top of this is the argc integer.  Below that is the argv
  63.  * stuff and below that is the
  64.  * environment stuff.
  65.  */
  66. start:
  67.     /*
  68.      * Argc is the first word on the top of the stack (top == lowest addr).
  69.      * This is followed immediately by the array of pointers to arguments
  70.      * (argv) and this is followed immediately by the array of pointers to
  71.      * the environment (envp).  We must calculate the address of envp by
  72.      * using the number of arguments given in argc.
  73.      * environ = (char *) argv + (argc + 1) * 4.
  74.      * And argv = top of stack plus sizeof (Address).
  75.      */
  76.     mov    %sp, %VOL_TEMP1
  77.     add    %VOL_TEMP1, MACH_FULL_STACK_FRAME, %VOL_TEMP1
  78.     ld    [%VOL_TEMP1], %o0        /* argc */
  79.     add    %VOL_TEMP1, 4, %o1        /* argv pointer */
  80.     add    %o0, 1, %o2
  81.     sll    %o2, 2, %o2
  82.     add    %o2, %o1, %o2        /* envp pointer */
  83.     set    _environ, %o3
  84.     st    %o2, [%o3]        /* store addr of env into environ */
  85.     
  86.     /* Mark last stack frame so debugger can tell bottom of stack. */
  87.     clr    %fp
  88.  
  89.     /* Off to main routine with arguments argc, argv, envp */
  90.     call    _main, 3
  91.     nop
  92.     call    _exit
  93.     nop
  94. @
  95.  
  96.  
  97. 1.1
  98. log
  99. @Initial revision
  100. @
  101. text
  102. @d19 1
  103. a19 1
  104. .asciz    "$Header: /sprite/lib/forms/sun4.md/RCS/proto.s,v 1.1 89/01/16 20:38:17 mgbaker Exp Locker: mgbaker $ SPRITE (Berkeley)"
  105. a20 1
  106.  
  107. d23 1
  108. a23 1
  109. .skip    4
  110. d47 1
  111. a47 1
  112.     mov    %fp, %VOL_TEMP1
  113. @
  114.